home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 23 / turnkey.zip / TKINST.BAT < prev    next >
DOS Batch File  |  1987-01-30  |  1KB  |  38 lines

  1. echo off
  2. cls
  3. echo.
  4. echo.
  5. echo                      Turnkey Installation
  6. echo.
  7. echo      Enter TKinst [drive:] to install Turnkey.  For example,
  8. echo                           TKinst D:
  9. echo      would install Turnkey to drive D.  If the drive letter is not
  10. echo      included, Turnkey will be installed on drive C.
  11. echo.
  12. echo      Note:  It is important NOT to initiate TKinst from a different
  13. echo             drive than which it resides.  For example, if TKinst is
  14. echo             on drive A, do NOT start it up by entering:
  15. echo                           A:TKinst
  16. echo             Instead, start up the installation process by doing this:
  17. echo                           A:
  18. echo                           TKinst
  19. echo.
  20. echo.
  21. echo Hit Ctrl-Break to abort installation, or
  22. pause
  23.  
  24. if "%1"=="" goto nodrive
  25. md %1\turnkey
  26. copy tk_prog.exe %1\turnkey\tk_prog.exe
  27. %1
  28. goto finish
  29.  
  30. :nodrive
  31. md c:\turnkey
  32. copy tk_prog.exe c:\turnkey\tk_prog.exe
  33. c:
  34.  
  35. :finish
  36. cd \turnkey
  37. tk_prog -install
  38.